/* GLOBAL */


*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Poppins, sans-serif;

}

body{
  background:#f4f6f9;
}
h3 {
  color:#0b3c5d;
  font-size: 20px;
  font-weight: 500;
     line-height: 1.5;
}


p {
   line-height: 1.5;
  font-size: 15px;
  font-weight: 400;
}

.tour-section{
  padding:80px 40px;
}

.tour-section h2{
  text-align:center;
  margin-bottom:50px;
}

/* GRID */
.tour-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

/* CARD */
.tour-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0, 0, 0, 0.692);
}
.tour-card:hover img{
  transform:scale(1.05);
}

/* IMAGE SLIDER */
.card-slider{
  height:320px;
  overflow:hidden;
}

.tour-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.card-track img{
  min-width:100%;
  height:100%;
  object-fit:cover;
}

/* INFO */
.tour-info{
  padding:20px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .tour-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .tour-grid{
    grid-template-columns:1fr;
  }
}




.All-tours
{
text-align: center;


}
.All-tours h3
{
  font-size: 40px;
}




/* MOBILE FILTER SCROLL */
@media (max-width: 600px){

  .tour-filter{
    justify-content:flex-start;
    overflow-x:auto;
    flex-wrap:nowrap;
    gap:12px;
    padding:10px 15px;
    scroll-snap-type:x mandatory;
  }

  .tour-filter::-webkit-scrollbar{
    display:none;
  }

  .tour-filter button{
    flex:0 0 auto;
    white-space:nowrap;
    scroll-snap-align:start;
    font-size:14px;
    padding:8px 18px;
  }
}









.tours-hero{
  padding:100px 20px;
  text-align:center;
  background:#062c3f;
  color:#fff;
}

.tour-filter{
  display:flex;
  justify-content:center;
  gap:20px;
  padding:30px;
}

.tour-filter button{
  padding:10px 20px;
  border:none;
  border-radius:25px;
  background:#eee;
  cursor:pointer;
}

.tours-section{
  overflow:hidden;
  padding:60px 0;
}

.tours-track{
  display:flex;
  gap:30px;
  transition:transform .6s ease;
}

.tour-card{
  min-width:320px;
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.tour-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.tour-info{
  padding:20px;
}

.tour-meta{
  display:flex;
  justify-content:space-between;
  margin:10px 0;
}

.tour-rating{
  color:#ffb703;
  margin-bottom:10px;
}

.tour-btn{
  display:block;
  text-align:center;
  background:#062c3f;
  color:#fff;
  padding:10px;
  border-radius:20px;
  text-decoration:none;
}

/* RESPONSIVE */
@media(max-width:768px){
  .tour-card{min-width:260px;}
}



/* TOURS SECTION */
.tours-section{
  padding:90px 8%;
  background:#fff;
}

.tours-head{
  text-align:center;
  margin-bottom:40px;
}

.tours-head h2{
  font-size:42px;
  margin-bottom:10px;
}

.tours-head p{
  color:#666;
  font-size:16px;
}

/* GRID */
.tours-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

@media(max-width:1000px){
  .tours-grid{ grid-template-columns:repeat(2,1fr); }
}

@media(max-width:650px){
  .tours-grid{ grid-template-columns:1fr; }
}

/* CARD */
.tour-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.10);
  transition:transform .25s ease, box-shadow .25s ease;
}

.tour-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 45px rgba(0,0,0,.16);
}

/* SLIDER */
.tour-slider{
  position:relative;
  height:220px;
  overflow:hidden;
}

.tour-slider input{
  display:none;
}

.tour-track{
  height:100%;
  display:flex;
  width:300%;
  transition:transform .55s ease;
}

.tour-track img{
  width:100%;
  height:100%;
  object-fit:cover;
  flex:0 0 100%;
  transition:transform .35s ease;
}

.tour-card:hover .tour-track img{
  transform:scale(1.04);
}

/* Slide switching (3 slides) */
.tour-slider input:nth-of-type(1):checked ~ .tour-track{ transform:translateX(0%); }
.tour-slider input:nth-of-type(2):checked ~ .tour-track{ transform:translateX(-33.333%); }
.tour-slider input:nth-of-type(3):checked ~ .tour-track{ transform:translateX(-66.666%); }

/* Dots */
.tour-dots{
  position:absolute;
  left:50%;
  bottom:12px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:2;
}

.tour-dots .dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.6);
  cursor:pointer;
  box-shadow:0 8px 20px rgba(0,0,0,.18);
  transition:transform .2s ease, background .2s ease;
}

.tour-dots .dot:hover{
  transform:scale(1.1);
  background:rgba(255,255,255,.95);
}

/* INFO */
.tour-info{
  padding:18px 18px 20px;
}

.tour-info h3{
  font-size:18px;
  margin-bottom:8px;
}

.tour-info p{
  color:#666;
  font-size:14px;
  line-height:1.5;
  margin-bottom:14px;
}

.tour-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.tour-price{
  font-weight:700;
  color:#111;
}

.tour-btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:10px;
  background:#111;
  color:#fff;
  text-decoration:none;
  transition:transform .2s ease, background .2s ease;
}

.tour-btn:hover{
  background:#333;
  transform:translateY(-2px);
}








/* HEADER */
.site-header{
  position:fixed;
  top:0;
  width:100%;
  z-index:999;
  background:rgba(6,44,63,0.75);
  backdrop-filter:blur(8px);
  padding:18px 60px;
}

.nav-container{
  display:flex;
  align-items:center;
}

/* LEFT LOGO */
.nav-left{
  flex:1;
}

.logo{
  height:45px;
}

/* CENTER MENU */
.nav-menu{
  flex:2;
  display:flex;
  justify-content:center;
}

.nav-menu ul{
  list-style:none;
  display:flex;
  gap:40px;
}

.nav-menu a{
  text-decoration:none;
  color:#fff;
  font-weight:500;
}

/* RIGHT SOCIAL */
.nav-right{
  flex:1;
  display:flex;
  justify-content:flex-end;
  gap:20px;
}

.nav-right a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
}

/* HAMBURGER */
.hamburger{
  display:none;
  font-size:28px;
  color:#fff;
  cursor:pointer;
}

/* MOBILE */
@media(max-width:900px){
  .nav-menu{
    position:absolute;
    top:80px;
    right:0;
    background:#062c3f;
    width:250px;
    padding:30px;
    display:none;
  }

  .nav-menu ul{
    flex-direction:column;
    gap:20px;
  }

  .nav-menu.active{
    display:flex;
  }

  .nav-right{
    display:none;
  }

  .hamburger{
    display:block;
    margin-left:auto;
  }
}


/* Tour Buttons */

.tour-buttons{
  display:flex;
  gap:8px;
  margin-top:12px;
}

.btn-view,
.btn-book{
  flex:1;
  text-align:center;
  padding:6px 0;          /* smaller height */
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  font-size:12px;         /* smaller text */
  transition:.3s;
}

.btn-view{
  border:1.5px solid #062c3f;
  color:#062c3f;
}






.tours-new{
  padding:100px 5%;
  background:#f9fbfd;
}

.tours-title{
  text-align:center;
  font-size:38px;
  margin-bottom:60px;
  color:#062c3f;
}

.tours-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px,1fr));
  gap:30px;
}

/* CARD */
.tour-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  transition:.3s;
}

.tour-card:hover{
  transform:translateY(-6px);
}

/* IMAGE SLIDER */
.card-slider{
  height:220px;
  overflow:hidden;
  position:relative;
}

.card-track{
  display:flex;
  height:100%;
  transition:transform .6s ease;
}

.card-track img{
  width:100%;
  height:220px;
  object-fit:cover;
}

/* CONTENT */
.tour-content{
  padding:18px;
}

.tour-content h3{
  font-size:18px;
  margin-bottom:6px;
}

.tour-content p{
  font-size:14px;
  color:#555;
}

/* BUTTONS */
.tour-buttons{
  display:flex;
  gap:8px;
  margin-top:12px;
}

.btn-view,
.btn-book{
  flex:1;
  text-align:center;
  padding:7px 0;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  font-size:12px;
  transition:.3s;
}

.btn-view{
  border:1.5px solid #062c3f;
  color:#062c3f;
}

.btn-view:hover{
  background:#062c3f;
  color:#fff;
}

.btn-book{
  background:#ffb703;
  color:#000;
}

.btn-book:hover{
  opacity:.85;
}
/* Image slider section */




.image-slider-section {
  padding: 100px 20px;
  background: #f3a908;
}

.slider-container {
  position: relative;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
  border-radius: 20px;
}

.slider-track {
  display: flex;
  transition: transform 0.8s ease;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* ARROWS */

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  font-size: 28px;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  transition: 0.3s;
}

.slider-btn:hover {
  background: rgba(255,255,255,0.4);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* DOTS */

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #fff;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .slide img {
    height: 300px;
  }

  .slider-btn {
    font-size: 20px;
    padding: 8px 14px;
  }
}





/* TOURS SECTION */
.tours-section{
  padding:90px 8%;
  background:#fff;
}

.tours-head{
  text-align:center;
  margin-bottom:40px;
}

.tours-head h2{
  font-size:42px;
  margin-bottom:10px;
}

.tours-head p{
  color:#666;
  font-size:16px;
}

/* GRID */
.tours-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

@media(max-width: 1000px){
  .tours-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media(max-width: 650px){
  .tours-grid{ grid-template-columns:1fr; }
}

/* CARD */
.tour-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.10);
  transition:transform .25s ease, box-shadow .25s ease;
  position:relative;
}

.tour-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 45px rgba(0,0,0,.16);
}

/* SLIDER */
.tour-slider{
  position:relative;
  height:220px;
  overflow:hidden;
}

.tour-track{
  height:100%;
  display:flex;
  transition:transform .55s ease;
}

.tour-track img{
  width:100%;
  height:100%;
  object-fit:cover;
  flex:0 0 100%;
  transition:transform .35s ease;
}

/* Image zoom on hover (nice effect) */
.tour-card:hover .tour-track img{
  transform:scale(1.04);
}

/* Overlay gradient */
.tour-slider::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.35), rgba(0,0,0,0) 60%);
  pointer-events:none;
}

/* Slider buttons */
.tour-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px;
  height:40px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  background:rgba(255,255,255,.92);
  box-shadow:0 10px 25px rgba(0,0,0,.20);
  display:grid;
  place-items:center;
  font-size:18px;
  z-index:2;
  transition:transform .2s ease;
}

.tour-nav:hover{ transform:translateY(-50%) scale(1.05); }

.tour-nav.prev{ left:12px; }
.tour-nav.next{ right:12px; }

/* Dots */
.tour-dots{
  position:absolute;
  left:50%;
  bottom:12px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:2;
}

.tour-dot{
  width:9px;
  height:9px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  background:rgba(255,255,255,.55);
}

.tour-dot.active{
  background:rgba(255,255,255,.95);
}

/* INFO */
.tour-info{
  padding:18px 18px 20px;
}

.tour-title{
  font-size:18px;
  margin-bottom:8px;
}

.tour-meta{
  color:#666;
  font-size:14px;
  line-height:1.5;
  margin-bottom:14px;
}

.tour-cta-row{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
}

.tour-price{
  font-weight:700;
  color:#111;
}

.tour-btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:10px;
  background:#111;
  color:#fff;
  text-decoration:none;
  transition:transform .2s ease, background .2s ease;
}

.tour-btn:hover{
  background:#333;
  transform:translateY(-2px);
}


/* Phone at bottom-left */
.floater.phone {
  bottom: 20px;
  left: 20px;
  background-color: #007BFF;
}

/* WhatsApp at bottom-right */
.floater.whatsapp {
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
}